home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 18 / AMIGAplus Sonderheft 18 (1999)(ICP)(DE)[!].iso / PD / Anwendungen / ppclibemu / tests / hello_world.c next >
C/C++ Source or Header  |  1999-01-03  |  95b  |  9 lines

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3.  
  4. main()
  5. {
  6.   printf("Hello %s!\n","World");
  7.   exit(0);
  8. }
  9.